home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
- PATH=/bin:/usr/bin:/usr/sbin
- #check sbin
- flag=0
- if ( test ! -f /usr/sbin/inform ) ; then
- ./sbin/inform "/usr/sbin/inform not found. Please copy it from \
- CDROM/sbin/inform"
- flag=1
- fi
- if ( test ! -f /usr/sbin/confirm ) ; then
- ./sbin/inform "/usr/sbin/confirm not found. Please copy it from \
- CDROM/sbin/confirm"
- flag=1
- fi
- if ( test ! -f /usr/sbin/playaifc ) ; then
- ./sbin/inform "/usr/sbin/playaifc not found. Please copy it from \
- CDROM/sbin/playaifc"
- flag=1
- fi
- if ( test ! -f /usr/sbin/movieplayer ) ; then
- ./sbin/inform "/usr/sbin/movieplayer not found. Please copy it from \
- CDROM/sbin/movieplayer"
- flag=1
- fi
- if ( test ! -f /usr/sbin/showcase ) ; then
- ./sbin/inform "/usr/sbin/showcase not found. Please copy it from \
- CDROM/sbin/showcase"
- flag=1
- fi
- if ( test $flag -eq 1 ) ; then
- ./sbin/inform "Start InsideIndy again after copying the missing files"
- exit 1
- fi
- ###########
-
-
- if ( test "$INDYTMPDIR" = "" ) ; then
- INDYTMPDIR=/usr/tmp/indytmpdir$$
- mkdir $INDYTMPDIR
- fi
- (sleep 5; playaifc ./audio/Over1.aiff) &
- cd slides
- env TMPDIR=$INDYTMPDIR showcase -f -v GuinLive_01.sc
- cd ..
-